/*Background de la description du restaurant*/
.section-animated-background {
    border: 0ch;
    border-color: #ffffff;
    background: linear-gradient(90deg, #d2d4d5, #f3ecec);
    transition: background 0.5s ease;
    /* Define the transition properties */
}

/*Animation du background de la description du restaurant au passage de la souris*/
.section-animated-background:hover {
    background: linear-gradient(90deg, #6969b5, #ff5733);
    color: #ffffff;
}